home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / PTRACE.S < prev    next >
Text File  |  1994-05-27  |  338b  |  19 lines

  1. /    int ptrace ( int request , int child_id , int address , int data )
  2.  
  3.     .globl    _ptrace
  4. _ptrace:
  5.         pushl   %ebx
  6.         pushl   %edi
  7.     movl    12(%esp), %ebx
  8.     movl    16(%esp), %edi
  9.     movl    20(%esp), %edx
  10.     movl    24(%esp), %ecx
  11.     movw    $0x7f08,%ax
  12.         int     $0x21
  13.     popl    %edi
  14.     popl    %ebx
  15.     jecxz    1f
  16.     movl    %ecx, _errno
  17. 1:
  18.     ret
  19.